76fec78c7d7caff23912db8d50cc2e413d8d4554,plugin-time-preprocessing/src/main/java/cc/topicexplorer/plugin/time/preprocessing/tables/wordspertopicperweek/WordsPerTopicPerWeekFill.java,WordsPerTopicPerWeekFill,deleteTempTables,#,312

Before Change


			database.executeUpdateQuery("DROP TABLE TIME$WEEK");
			database.executeUpdateQuery("DROP TABLE TIME$TERM_WEEK");
			database.executeUpdateQuery("DROP TABLE TIME$TOPIC_WEEK");
			database.executeUpdateQuery("DROP TABLE TIME$TERM_TOPIC_WEEK");
		} catch (SQLException e) {
			logger.error("Error deleting temporary tables.");
			throw new RuntimeException(e);

After Change


				queryAdd = "IF EXISTS ";
			}
			database.executeUpdateQuery("DROP TABLE " + queryAdd + "TIME$WEEK");
			database.executeUpdateQuery("DROP TABLE " + queryAdd + "TIME$TERM_WEEK");
			database.executeUpdateQuery("DROP TABLE " + queryAdd + "TIME$TOPIC_WEEK");
			database.executeUpdateQuery("DROP TABLE " + queryAdd + "TIME$TERM_TOPIC_WEEK");
		} catch (SQLException e) {